2008-02-05 Matthias Clasen <mclasen@redhat.com>
* gtk/updateiconcache.c: Ignore images in the toplevel theme
directory, avoiding one source of invalid caches that has been
spotted in the wild.
svn path=/trunk/; revision=19466
+2008-02-05 Matthias Clasen <mclasen@redhat.com>
+
+ * gtk/updateiconcache.c: Ignore images in the toplevel theme
+ directory, avoiding one source of invalid caches that has been
+ spotted in the wild.
+
2008-02-05 Matthias Clasen <mclasen@redhat.com>
* gtk/updateiconcache.c: Fix the previous commit to compile.
continue;
}
+ /* ignore images in the toplevel directory */
+ if (subdir == NULL)
+ continue;
+
retval = g_file_test (path, G_FILE_TEST_IS_REGULAR);
if (retval)
{
if (!validate_file (tmp_cache_path))
{
g_printerr (_("The generated cache was invalid.\n"));
- g_unlink (tmp_cache_path);
+ //g_unlink (tmp_cache_path);
exit (1);
}